home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / bob13.arc / HELLO.BOB < prev    next >
Text File  |  1991-10-01  |  119b  |  9 lines

  1. main()
  2. {
  3.     s1 = "Hello";
  4.     s1 += ',';
  5.     s2 = ' ';
  6.     s2 += "World!";
  7.     stdout << s1 << s2 << "\n";
  8. }
  9.